home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / editor / auror300.zip / CFGOPEN.AML < prev    next >
Text File  |  1996-07-17  |  1KB  |  39 lines

  1. //--------------------------------------------------------------------
  2. // The Aurora Editor v3.0, Copyright (C) 1993-1996 nuText Systems
  3. //
  4. // CFGOPEN.AML
  5. // Configuration for Open Options
  6. //--------------------------------------------------------------------
  7.  
  8. include bootpath "define.aml"
  9.  
  10. variable openopt, defextension
  11.  
  12. // create dialog box
  13. dialog "Open Options" 48 13 "cp"
  14.  
  15. // open options group box
  16. groupbox 'Default Open Options:' 3 2
  17.   (menu ''
  18.      item " ( ) &Full Screen"
  19.      item " ( ) &Maximize"
  20.      item " ( ) Mi&nimize"
  21.      item " ( ) &Cascade"
  22.      item " ( ) &Horizontal Split "
  23.      item " ( ) &Vertical Split"
  24.      item " ( ) Sam&e Window"
  25.    end) '' _OpenOpt 'fznchve'
  26.  
  27. // default extensions
  28. field "&Default File Extensions:"   3 11 43 _DefExt
  29.  
  30. // ok/cancel buttons
  31. button "O&k"    38 3 8
  32. button "Cancel" 38 5 8
  33.  
  34. // display dialogbox
  35. if (getdialog ref openopt ref defextension) == 'Ok' then
  36.   prf.OpenOpt  = openopt
  37.   prf.DefExt   = defextension
  38. end
  39.